home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 June / Software of the Month Club 1996 June.iso / pc / os2 / utility / clock / module.h < prev    next >
C/C++ Source or Header  |  1996-02-21  |  299b  |  16 lines

  1. // Class MODULE: Encapsulates the load/unload logic for a OS/2 resource module.
  2.  
  3. #define INCL_BASE
  4. #include <os2.h>
  5.  
  6. class Module
  7. {
  8.   private:
  9.     HMODULE Handle ;
  10.  
  11.   public:
  12.     Module ( PSZ Name = PSZ("") ) ;
  13.     ~Module ( ) ;
  14.     HMODULE QueryHandle () { return ( Handle ) ; }
  15. } ;
  16.